home *** CD-ROM | disk | FTP | other *** search
/ Aminet 5 / Aminet 5 - March 1995.iso / Aminet / util / rexx / XES131.lha / XES / Install < prev    next >
Text File  |  1994-12-23  |  508b  |  22 lines

  1. echo "Do you wish to delete all your #?.xdme files"
  2. echo "before you have the new ones installed?"
  3. ask "Proceed?"
  4. IF WARN
  5.     delete REXX:#?.xdme
  6. ENDIF
  7.  
  8. echo "WARNING: This may overwrite some files."
  9. echo "Backup anything you want to save before proceeding."
  10. echo "Assign GUI: to a drawer if it isn't already assigned."
  11. ask "continue?"
  12. IF WARN
  13.     copy S/.edrc s:
  14.     copy REXX/#? REXX:
  15.     copy C/#? C:
  16.     copy GUI/#? GUI:
  17. ENDIF
  18. echo "Installation complete."
  19. echo "Put the documentation where you will."
  20.  
  21.  
  22.